Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

14 righe
400 B

  1. import fetch from 'node-fetch'
  2. export default eventHandler(async (req) => {
  3. const id = req.context.params?.id || ''
  4. const url = `https://api.themoviedb.org/3/movie/${id}`
  5. const config = useRuntimeConfig(req)
  6. const response = await fetch(url, {
  7. method: 'get',
  8. headers: { 'Content-Type': 'application/json', 'Authorization': config.API_BEARER }
  9. })
  10. return await response.json()
  11. })